Input/Outputshiny에서는 ui.R과 server.R에서 input과 output을 만들고, id를 통해서 설정된 데이터와 그래프를 주고 받는다.
Input- sliderInput(“id”, “text”, min, max, value)
- selectInput(“id”, text”, list)
- checkboxInput(“id”, “text”, bool)
- radioButtons
- checkboxGroupInput
- numericInput
- submitButton
- fileInput
Outputh3: build html tag(text를 html로 변환 후 화면에 출력)
plotOutput(renderPlot): 그래프 출력
tableOutput(rednerTable): 테이블 출력
verbatimTextOutput(renderPrint): 콘솔 출력 텍스트를 html로 화면에 출력
output$variableid: ui.R에서 설정한 값 사용